[id].vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799
  1. <template>
  2. <div id="newsList">
  3. <!-- 页面头部 -->
  4. <HomePageHead></HomePageHead>
  5. <!-- Banner1 -->
  6. <HomeBanner1></HomeBanner1>
  7. <!-- 面包屑导航 -->
  8. <div class="breadcrumb">
  9. <div class="inner">
  10. <span class="location">当前位置:</span>
  11. <el-breadcrumb :separator-icon="ArrowRight">
  12. <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
  13. <el-breadcrumb-item :to="{ path: '/specialList/7' }">本网招聘</el-breadcrumb-item>
  14. </el-breadcrumb>
  15. </div>
  16. </div>
  17. <div class="projectMoreBox">
  18. <!-- <div class="projectMoreInfo">项目介绍</div> -->
  19. <div class="projectMoreTitle">社会保障在线网</div>
  20. <div class="projectMoreText">
  21. <p><b>政讯通·全国文化旅游项目</b>网络平台由<b>政讯通-全国政务信息一体化办公室</b>主管,联合30多家企事业单位组成,由北京政讯通文化传播有限公司对外牵头运营。</p>
  22. <p><b>政讯通·全国文化旅游项目</b>网络平台有政务、行业独立域名网站各<b>100</b>个和<b>4</b>个综合管理网站共<b>204</b>个网站,按照不同的行业和功能分类为用户提供大体系、广领域、全方位、全过程,有针对性的全国性文化旅游法制综合服务平台。
  23. </p>
  24. <p><b>政讯通·全国旅游资讯发布中心</b>是<b>政讯通·全国文化旅游项目</b>网络平台的4个综合管理网站之一,目前开设了栏目上千个,地市中心可全面覆盖我国334个地级市,<b>业务范围</b>涵盖旅游资讯、與情监测、法律咨询、旅游调研、法律宣传、群众监督、旅游安全等领域,日均会员访问量超过万次,累计完成文化旅游领域法制调研课题千余件,网络信息化会员遍布全国各地,实施<b>行业、区域</b>全覆盖,是我国具有广泛传播力、影响力的新型主流媒体。
  25. </p>
  26. </div>
  27. </div>
  28. <!-- 资讯列表 -->
  29. <div class="newsList">
  30. <div class="inner">
  31. <div class="innerLeft">
  32. <div class="innerTitle">本网招聘</div>
  33. <ul class="list">
  34. <li v-for="(item, index) in newsList" :key="index">
  35. <NuxtLink :to="{ path: `/speciaArticle/${item.id}` }" target="_blank">{{ item.list_title }}
  36. </NuxtLink>
  37. </li>
  38. </ul>
  39. <!-- 分页器 -->
  40. <div class="pagination">
  41. <el-pagination size="small" background layout="prev, pager, next" :total="total" class="mt-4"
  42. prev-text="上一页" next-text="下一页" @change="changePage" />
  43. <!-- <HomePagination @sendData="handleData"></HomePagination> -->
  44. </div>
  45. </div>
  46. <div class="innerRight">
  47. <!-- <DetailHotNews></DetailHotNews> -->
  48. <div class="rightMenuTitle">导航列表</div>
  49. <ul>
  50. <li v-for="(item, index) in bottomMenu" :key="index">
  51. <NuxtLink :to="`/speciaArticle/${item.id}`" target="_blank"
  52. v-if="item.id == pageId && item.id != 7" class="active">{{ item.name }}</NuxtLink>
  53. <NuxtLink :to="`/speciaArticle/${item.id}`" target="_blank"
  54. v-else-if="item.id != pageId && item.id != 7">{{ item.name }}</NuxtLink>
  55. <NuxtLink :to="`/specialList/${item.id}`" target="_blank"
  56. v-if="item.id == 7 && pageId == 7 && routeHref == '/specialList/7'" class="active">{{ item.name }}
  57. </NuxtLink>
  58. <NuxtLink :to="`/specialList/${item.id}`" target="_blank" v-else-if="item.id == 7">{{
  59. item.name }}</NuxtLink>
  60. </li>
  61. </ul>
  62. </div>
  63. </div>
  64. </div>
  65. <!-- 三农资讯logo -->
  66. <HomeSannongzixun></HomeSannongzixun>
  67. <!-- 资讯推荐 -->
  68. <!-- <div class="zixuntuijian">
  69. <div class="inner">
  70. <div class="innerLeft">
  71. <div class="zixunLeft">
  72. <div class="title">
  73. <h3>
  74. 资讯推荐
  75. </h3>
  76. </div>
  77. <ul class="photo_text">
  78. <li v-for="item in news1">
  79. <img :src="item.imgurl" alt="">
  80. <div>
  81. <h5>{{ item.title }}</h5>
  82. <p>
  83. <span>{{ item.author }}</span>
  84. <span>{{ item.created_at }}</span>
  85. </p>
  86. </div>
  87. </li>
  88. <li v-for="item in news11">
  89. <em></em>
  90. {{ item.title }}
  91. </li>
  92. </ul>
  93. </div>
  94. <div class="zixunRight">
  95. <div class="title">
  96. <h3>
  97. 资讯推荐
  98. </h3>
  99. </div>
  100. <ul class="photo_text">
  101. <li v-for="item in news2">
  102. <img :src="item.imgurl" alt="">
  103. <div>
  104. <h5>{{ item.title }}</h5>
  105. <p>
  106. <span>{{ item.author }}</span>
  107. <span>{{ item.created_at }}</span>
  108. </p>
  109. </div>
  110. </li>
  111. <li v-for="item in news22">
  112. <em></em>
  113. {{ item.title }}
  114. </li>
  115. </ul>
  116. </div>
  117. </div>
  118. <div class="innerRight">
  119. <div class="title">
  120. <h4>
  121. 热点资讯
  122. </h4>
  123. </div>
  124. <ul class="rightList">
  125. <li v-for="item in hotlistall">
  126. <img class="left" :src="item.imgurl">
  127. <p class="left">{{ item.title }}</p>
  128. </li>
  129. </ul>
  130. </div>
  131. </div>
  132. </div> -->
  133. <!-- 页面底部 -->
  134. <HomeFoot></HomeFoot>
  135. </div>
  136. </template>
  137. <script setup>
  138. import { onMounted } from 'vue';
  139. import { ElBreadcrumb, ElBreadcrumbItem, ElPagination } from 'element-plus'
  140. import { ArrowRight } from '@element-plus/icons-vue'
  141. const nuxtApp = useNuxtApp();
  142. const axios = nuxtApp.$axios;
  143. //获得跳转过来的id
  144. const route = useRoute();
  145. const pageId = route.params.id; //获得该页面的id
  146. console.log(pageId);
  147. const routeHref = route.href;
  148. // 定义响应式数据
  149. const seoData = ref({
  150. title: '三农资讯网',
  151. description: '默认描述',
  152. keywords: '默认关键词',
  153. image: 'https://example.com/default-image.jpg'
  154. });
  155. // 在 onMounted 钩子中获取数据
  156. onMounted(async () => {
  157. try {
  158. const response = await axios.get(`/web/getWebsiteCategoryHead?catid=${articleId}`);
  159. const data = response.data.website_head; // 假设接口返回的数据在 data 字段中
  160. console.log(seoData.value.title)
  161. // 更新 seoData
  162. seoData.value = {
  163. title: data.seo_title,
  164. description: data.seo_description,
  165. keywords: data.seo_keywords,
  166. image: data.seo_image
  167. };
  168. console.log(seoData.value.title)
  169. } catch (error) {
  170. console.error('获取 SEO 数据失败:', error);
  171. // 设置默认值
  172. seoData.value = {
  173. title: '三农资讯网',
  174. description: '默认描述',
  175. keywords: '默认关键词',
  176. image: 'https://example.com/default-image.jpg'
  177. };
  178. }
  179. });
  180. // 监听 seoData 的变化,动态设置 SEO 字段
  181. watch(seoData, (newVal) => {
  182. if (newVal.title) { // 确保 title 有值
  183. useSeoMeta({
  184. title: newVal.title, // 使用动态值
  185. description: newVal.description,
  186. ogTitle: newVal.title,
  187. ogDescription: newVal.description,
  188. ogImage: newVal.image,
  189. twitterTitle: newVal.title,
  190. twitterDescription: newVal.description,
  191. twitterImage: newVal.image,
  192. keywords: newVal.keywords
  193. });
  194. }
  195. }, { immediate: true });
  196. onMounted(() => {
  197. })
  198. let changePage = (value) => {
  199. console.log("当前页码", value);
  200. page.value = value
  201. console.log(page.value);
  202. newslists()
  203. }
  204. // 新闻列表
  205. const newsList = useState("newsList", () => '');
  206. const newslists = async () => {
  207. try {
  208. const response = await axios.get(`/web/getWebsiteFooterCategoryList?fcat_id=${pageId}`);
  209. // console.log(response.data.rows);
  210. newsList.value = response.data;
  211. //total.value = response.data.count;
  212. } catch (error) {
  213. console.error(error);
  214. }
  215. }
  216. //获得底部导航
  217. const bottomMenu = ref([]);
  218. const getBottomMenu = async () => {
  219. const response = await axios.get(`/web/getWebsiteFooterCategory`);
  220. bottomMenu.value = response.data;
  221. }
  222. // //热点资讯
  223. // const hotlistall = useState("hotlistall", () => "");
  224. // const hotlist = async () => {
  225. // try {
  226. // const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${2}&level=${4}&placeid=${1}`);
  227. // console.log('热点资讯', response.data);
  228. // for (let item of response.data) {
  229. // console.log(item);
  230. // item.count = 1;
  231. // }
  232. // hotlistall.value = response.data;
  233. // } catch (error) {
  234. // console.error(error);
  235. // }
  236. // }
  237. // //资讯推荐1
  238. // const news1 = useState("news1", () => "");
  239. // const newslist1 = async () => {
  240. // try {
  241. // const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${1}&level=${5}&placeid=${1}`);
  242. // console.log('热点资讯', response.data);
  243. // news1.value = response.data;
  244. // } catch (error) {
  245. // console.error(error);
  246. // }
  247. // }
  248. // const news11 = useState("news11", () => "");
  249. // const newslist11 = async () => {
  250. // try {
  251. // const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${3}&level=${5}&placeid=${1}`);
  252. // console.log('热点资讯', response.data);
  253. // news11.value = response.data;
  254. // } catch (error) {
  255. // console.error(error);
  256. // }
  257. // }
  258. // //资讯推荐2
  259. // const news2 = useState("news2", () => "");
  260. // const newslist2 = async () => {
  261. // try {
  262. // const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${1}&level=${5}&placeid=${1}`);
  263. // console.log('热点资讯', response.data);
  264. // news2.value = response.data;
  265. // } catch (error) {
  266. // console.error(error);
  267. // }
  268. // }
  269. // const news22 = useState("news22", () => "");
  270. // const newslist22 = async () => {
  271. // try {
  272. // const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${3}&level=${5}&placeid=${1}`);
  273. // console.log('热点资讯', response.data);
  274. // news22.value = response.data;
  275. // } catch (error) {
  276. // console.error(error);
  277. // }
  278. // }
  279. //挂载成功钩子函数
  280. onMounted(() => {
  281. // 资讯推荐
  282. newslists()
  283. // 获得左侧导航
  284. getBottomMenu()
  285. // 热点资讯
  286. // hotlist()
  287. // // 资讯推荐
  288. // newslist1()
  289. // newslist2()
  290. // // 热点资讯
  291. // newslist11()
  292. // newslist22()
  293. })
  294. //路由中间件
  295. definePageMeta({
  296. middleware: 'auth'
  297. })
  298. </script>
  299. <style lang="less" scoped>
  300. //导航条
  301. .breadcrumb {
  302. width: 100%;
  303. height: 22px;
  304. margin-bottom: 30px;
  305. font-family: Microsoft YaHei, Microsoft YaHei;
  306. font-weight: 400;
  307. font-size: 20px;
  308. color: #666666;
  309. line-height: 23px;
  310. text-align: left;
  311. font-style: normal;
  312. text-transform: none;
  313. :deep(.el-breadcrumb) {
  314. display: inline-block;
  315. vertical-align: -4px;
  316. }
  317. :deep(.el-breadcrumb__inner a),
  318. :deep(.el-breadcrumb__inner.is-link) {
  319. color: #666666;
  320. font-weight: 400;
  321. text-decoration: none;
  322. transition: var(--el-transition-color);
  323. }
  324. span {
  325. font-family: Microsoft YaHei, Microsoft YaHei;
  326. font-weight: 400;
  327. font-size: 20px;
  328. color: #666666;
  329. line-height: 23px;
  330. text-align: left;
  331. font-style: normal;
  332. text-transform: none;
  333. }
  334. span:hover {
  335. color: #666666;
  336. }
  337. .location {
  338. margin-right: 20px;
  339. width: 100px;
  340. height: 22px;
  341. font-family: Microsoft YaHei, Microsoft YaHei;
  342. font-weight: 400;
  343. font-size: 20px;
  344. color: #666666;
  345. line-height: 23px;
  346. text-align: left;
  347. font-style: normal;
  348. text-transform: none;
  349. }
  350. }
  351. // 资讯列表
  352. .newsList {
  353. width: 100%;
  354. height: 675px;
  355. margin-bottom: 70px;
  356. .inner {
  357. width: 1200px;
  358. .innerLeft {
  359. height: 65px;
  360. line-height: 65px;
  361. font-size: 22px;
  362. color: #028E21;
  363. font-weight: bold;
  364. }
  365. .innerTitle {
  366. font-size: 24px;
  367. }
  368. .innerLeft {
  369. height: 675px;
  370. float: right;
  371. >.list {
  372. height: 570px;
  373. margin-bottom: 70px;
  374. border-top: 1px solid #139602;
  375. >li {
  376. width: 790px;
  377. height: 60px;
  378. white-space: nowrap;
  379. overflow: hidden;
  380. text-overflow: ellipsis;
  381. line-height: 60px;
  382. //border-bottom: 1px solid #D9D9D9;
  383. >a {
  384. width: 360px;
  385. height: 26px;
  386. font-family: Microsoft YaHei, Microsoft YaHei;
  387. font-weight: 400;
  388. font-size: 20px;
  389. color: #333333;
  390. line-height: 26px;
  391. text-align: left;
  392. font-style: normal;
  393. text-transform: none;
  394. }
  395. }
  396. >li:hover>a {
  397. color: #139602;
  398. }
  399. >li:nth-child(1)::after,
  400. >li:nth-child(2)::after {
  401. content: "热";
  402. margin-left: 13px;
  403. background: #FF8A37;
  404. color: #fff;
  405. font-size: 14px;
  406. padding: 0px 2px;
  407. }
  408. >li:nth-child(5n) {
  409. border-bottom: 1px solid #D9D9D9;
  410. }
  411. }
  412. >.pagination {
  413. width: 800px;
  414. height: 34px;
  415. margin-left: 141px;
  416. display: flex;
  417. justify-content: center;
  418. margin: 0;
  419. // 鼠标移入后字体颜色
  420. .el-pagination::v-deep :hover {
  421. color: #139609;
  422. }
  423. .el-pagination.is-background::v-deep .btn-next,
  424. .el-pagination.is-background::v-deep .btn-prev {
  425. width: 70px;
  426. height: 34px;
  427. margin: 0px 10px;
  428. border-radius: 4px;
  429. }
  430. .el-pagination.is-background::v-deep .el-pager li {
  431. margin: 0px 10px;
  432. width: 38px;
  433. height: 34px;
  434. border-radius: 4px;
  435. }
  436. .el-pagination.is-background::v-deep .btn-next.is-active,
  437. .el-pagination.is-background::v-deep .btn-prev.is-active,
  438. .el-pagination.is-background::v-deep .el-pager li.is-active {
  439. background-color: #028e21;
  440. color: #fff;
  441. }
  442. }
  443. }
  444. .innerRight {
  445. width: 279px;
  446. .rightMenuTitle {
  447. width: 279px;
  448. height: 69px;
  449. font-size: 22px;
  450. font-weight: bold;
  451. line-height: 58px;
  452. text-align: center;
  453. color: #fff;
  454. background: url("../../static/special/projectMoreTitle.png") no-repeat;
  455. margin-bottom: 30px;
  456. }
  457. ul {
  458. li {
  459. a {
  460. border-left: 5px solid #028E21;
  461. margin-bottom: 15px;
  462. font-size: 22px;
  463. display: block;
  464. height: 61px;
  465. line-height: 61px;
  466. color: #333333;
  467. text-align: center;
  468. background: #FBFBFB;
  469. }
  470. }
  471. }
  472. .active {
  473. border-left: 0;
  474. border: 1px solid #028E21;
  475. background: #fff;
  476. }
  477. }
  478. }
  479. }
  480. //资讯推荐
  481. .zixuntuijian {
  482. width: 100%;
  483. height: 290px;
  484. margin-bottom: 70px;
  485. .innerLeft {
  486. // 左侧
  487. .zixunLeft {
  488. margin-right: 30px;
  489. }
  490. .zixunRight,
  491. .zixunLeft {
  492. float: left;
  493. width: 380px;
  494. height: 290px;
  495. // 标题部分
  496. >.title {
  497. width: 380px;
  498. }
  499. >.title>h3 {
  500. height: 36px;
  501. font-family: Source Han Sans, Source Han Sans;
  502. font-weight: bold;
  503. font-size: 24px;
  504. color: #000000;
  505. line-height: 28px;
  506. text-align: left;
  507. font-style: normal;
  508. text-transform: none;
  509. border-bottom: 1px solid #139602;
  510. }
  511. >.title>h3>span {
  512. float: right;
  513. width: 56px;
  514. height: 20px;
  515. line-height: 24px;
  516. font-weight: 400;
  517. font-size: 14px;
  518. color: #999999;
  519. font-style: normal;
  520. text-transform: none;
  521. }
  522. .photo_text {
  523. >li:first-child {
  524. width: 380px;
  525. height: 120px;
  526. margin-top: 20px;
  527. margin-bottom: 15px;
  528. position: relative;
  529. >img {
  530. float: left;
  531. width: 160px;
  532. height: 120px;
  533. }
  534. >div {
  535. float: left;
  536. width: 220px;
  537. height: 120px;
  538. padding-left: 15px;
  539. padding-top: 6px;
  540. box-sizing: border-box;
  541. background-color: #f6f6f6;
  542. >h5 {
  543. width: 200px;
  544. height: 54px;
  545. display: -webkit-box;
  546. -webkit-box-orient: vertical;
  547. -webkit-line-clamp: 2;
  548. overflow: hidden;
  549. text-overflow: ellipsis;
  550. word-break: break-all;
  551. font-family: Source Han Sans, Source Han Sans;
  552. font-weight: 500;
  553. font-size: 18px;
  554. color: #333333;
  555. line-height: 26px;
  556. text-align: left;
  557. font-style: normal;
  558. text-transform: none;
  559. }
  560. >p {
  561. width: 200px;
  562. height: 22px;
  563. line-height: 20px;
  564. position: absolute;
  565. bottom: 5px;
  566. right: 0;
  567. >span {
  568. display: inline-block;
  569. // width: 100px;
  570. height: 18px;
  571. font-family: Source Han Sans, Source Han Sans;
  572. font-weight: 400;
  573. font-size: 12px;
  574. color: #999999;
  575. text-align: left;
  576. line-height: 14px;
  577. font-style: normal;
  578. text-transform: none;
  579. }
  580. >span:last-child {
  581. // width: 90px;
  582. text-align: right;
  583. margin-left: 20px;
  584. }
  585. }
  586. }
  587. }
  588. >li {
  589. width: 380px;
  590. height: 25px;
  591. white-space: nowrap;
  592. overflow: hidden;
  593. text-overflow: ellipsis;
  594. font-family: PingFang SC, PingFang SC;
  595. font-weight: 500;
  596. font-size: 18px;
  597. color: #333333;
  598. line-height: 21px;
  599. text-align: left;
  600. font-style: normal;
  601. text-transform: none;
  602. margin-bottom: 10px;
  603. em {
  604. display: inline-block;
  605. width: 8px;
  606. height: 8px;
  607. border-radius: 8px;
  608. margin-right: 10px;
  609. background-color: #d9d9d9;
  610. }
  611. }
  612. >li:hover {
  613. color: #139602;
  614. }
  615. >li:hover em {
  616. background-color: #139602;
  617. }
  618. }
  619. }
  620. }
  621. .innerRight {
  622. width: 381px;
  623. height: 290px;
  624. background-color: #fbfbfb;
  625. >.title {
  626. width: 380px;
  627. height: 40px;
  628. line-height: 40px;
  629. border-top: 1px solid #139602;
  630. border-bottom: 1px solid #e7e7e7;
  631. >h4 {
  632. font-family: Microsoft YaHei, Microsoft YaHei;
  633. font-weight: 400;
  634. margin-left: 20px;
  635. font-size: 20px;
  636. color: #000000;
  637. text-align: left;
  638. font-style: normal;
  639. text-transform: none;
  640. >span {
  641. float: right;
  642. font-family: Microsoft YaHei, Microsoft YaHei;
  643. font-weight: 400;
  644. font-size: 14px;
  645. margin-right: 10px;
  646. color: #999999;
  647. text-align: left;
  648. font-style: normal;
  649. text-transform: none;
  650. }
  651. }
  652. }
  653. .rightList {
  654. height: 540px;
  655. margin-top: 20px;
  656. >li {
  657. height: 100px;
  658. margin-bottom: 10px;
  659. >img {
  660. width: 150px;
  661. height: 100px;
  662. }
  663. >p {
  664. width: 219px;
  665. height: 100px;
  666. padding-left: 12px;
  667. font-family: PingFang SC, PingFang SC;
  668. font-weight: 400;
  669. font-size: 16px;
  670. color: #333333;
  671. line-height: 22px;
  672. text-align: left;
  673. font-style: normal;
  674. text-transform: none;
  675. }
  676. >p:hover {
  677. box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.1);
  678. }
  679. }
  680. }
  681. }
  682. }
  683. .projectMoreBox {
  684. width: 1200px;
  685. margin: 0 auto;
  686. height: 452px;
  687. margin-top: 20px;
  688. background: url("../../static/special/projectMoreBg.png") no-repeat;
  689. margin-bottom: 40px;
  690. .projectMoreTitle {
  691. color: #028E21;
  692. padding-top: 45px;
  693. font-size: 26px;
  694. padding-left: 204px;
  695. }
  696. .projectMoreText {
  697. padding: 40px;
  698. font-size: 20px;
  699. color: #333333;
  700. text-indent: 2em;
  701. line-height: 36px;
  702. }
  703. }
  704. </style>